mistral

Mistral: Mistral Large 2411

models/Mistral Large 2411

Mistral Large 2 2411 is an update of [Mistral Large 2](/mistralai/mistral large) released together with [Pixtral Large 2411](/mistralai/pixtral large 2411) It provides a significant upgrade on the previous [Mistral Large 24.07](/mistralai/mistral large 2407), with notable improvements in long context understanding, a new system prompt, and more accurate function calling.
Currency$USD
Input$2.00
Output$6.00
Context window131.1K

Generate API Key Generate your API Key to securely access IndoxHub's AI models. Integrate with OpenAI-compatible tools, run queries, and build powerful AI applications — all with a single secure key.
Endpoint
POSThttps://api.indoxhub.com/api/v1/chat/completions
Configmistral/mistral-large-2411
from indoxhub import Client
 
# Initialize the client
with Client(api_key="[LOGIN TO GET API KEY]") as client:
    # Generate a chat completion
    response = client.chat(
        messages=[{"role":"system","content":"You are a helpful assistant."},{"role":"user","content":"What is machine learning and why is it important?"}],
        model="mistral/mistral-large-2411",
        temperature:"0.7"
    )
 
    # Print the response
    print(response["data"])